home *** CD-ROM | disk | FTP | other *** search
/ Apple Reference & Present…nuary (Partner) - Disc 2 / The Apple Reference and Presentations Library (Disc 2)(January 1994).iso / Diehl Graphsoft / German / MiniCad / MiniCad-PPC / MiniCad 5.0.1-D / MiniCad 5.0.1-D.rsrc / STR#_7021.txt < prev    next >
Text File  |  1994-10-06  |  3KB  |  89 lines

  1. Offsets object connected to h specified distance from current position.
  2.  
  3. HMove(h : HANDLE; XOff,YOff : REAL);
  4.  
  5. Changes the text contains of a text object that is connected to ObjectHandle
  6.  
  7. SetText(ObjectHandle : HANDLE; Str : STRING);
  8.  
  9. Activates the spreadsheet that is connected by ObjectHandle
  10.  
  11. SelectSS(ObjectHandle : HANDLE);
  12.  
  13. Moves a 3D object connected to ObjectHandle relative to it current position specified by ‚àÜX,‚àÜY,‚àÜZ
  14.  
  15. Move3DObj(ObjectHandle : HANDLE;  ‚àÜX,‚àÜY,‚àÜZ : REAL);
  16.  
  17. Changes the Height,Width,Depth of a 3D object that is connected to ObjectHandle
  18.  
  19. Set3DInfo(ObjectHandle : HANDLE;  Height,Width,Depth : REAL);
  20.  
  21. Rotates a 3D object that is connected to ObjectHandle at the amount specified by #X,#Y,#Z around the point specified by XCenter,YCenter,ZCenter
  22.  
  23. Set3DRot(ObjectHandle : HANDLE;  #X,#Y,#Z,XCenter,YCenter,ZCenter : REAL);
  24.  
  25. Changes the start and arc angles of the arc that ic connected to ObjectHandle
  26.  
  27. SetArc(ObjectHandle : HANDLE;  #StartAngle,#ArcAngle : REAL);
  28.  
  29. Changes the location of the polygon's vertex, which is specified by Index to the new location specified by X,Y of the polygon that is connected to ObjectHandle
  30.  
  31. SetPolyPt(ObjectHandle : HANDLE;  Index : INTEGER;  X,Y : REAL);
  32.  
  33. Changes the second end point of a line to the new location specified by X,Y to the line connected by ObjectHandle
  34.  
  35. SetSegPt2(ObjectHandle : HANDLE;  X,Y : REAL);
  36.  
  37. Changes the first end point of a line to the new location specified by X,Y to the line connected by ObjectHandle
  38.  
  39. SetSegPt1(ObjectHandle : HANDLE;  X,Y : REAL);
  40.  
  41. Assigns the specifed fill background color to the object that is connected to ObjectHandle
  42.  
  43. SetFillBack(ObjectHandle : HANDLE; Red,Green,Blue : LONGINT);
  44.  
  45. Assigns the specifed fill foreground color to the object that is connected to ObjectHandle
  46.  
  47. SetFillFore(ObjectHandle : HANDLE; Red,Green,Blue : LONGINT);
  48.  
  49. Assigns the specifed pen background color to the object that is connected to ObjectHandle
  50.  
  51. SetPenBack(ObjectHandle : HANDLE; Red,Green,Blue : LONGINT);
  52.  
  53. Assigns the specifed pen foreground color to the object that is connected to ObjectHandle
  54.  
  55. SetPenFore(ObjectHandle : HANDLE; Red,Green,Blue : LONGINT);
  56.  
  57. Assigns the specified bounding box coordinates x1, y1, x2, y2 to the object that is connected to h.
  58.  
  59. SetBBox(ObjectHandle : HANDLE;  X1,Y1,X2,Y2 : REAL);
  60.  
  61. Assigns the specifed LineStyle to the object that is connected to ObjectHandle
  62.  
  63. SetLS(ObjectHandle : HANDLE;  LineStyle : INTEGER);
  64.  
  65. Assigns the specifed LineWeight to the object that is connected to ObjectHandle
  66.  
  67. SetLW(ObjectHandle : HANDLE;  LineWeight : INTEGER);
  68.  
  69. Assigns the specifed FillPattern to the object that is connected to ObjectHandle
  70.  
  71. SetFPat(ObjectHandle : HANDLE;  FillPattern : INTEGER);
  72.  
  73. Assigns the specifed Class to the object that is connected to ObjectHandle
  74.  
  75. SetClass(ObjectHandle : HANDLE;  Class : STRING);
  76.  
  77. Assigns the specifed Name to the object that is connected to ObjectHandle
  78.  
  79. SetName(ObjectHandle : HANDLE; Name : STRING);
  80.  
  81. Deselects the object that is connected to ObjectHandle
  82.  
  83. SetDSelect(ObjectHandle : HANDLE);
  84.  
  85. Selects the object that is connected to ObjectHandle
  86.  
  87. SetSelect(ObjectHandle : HANDLE);
  88.  
  89.